This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Frank Chuweverakoi 20.Aug.03 09:25 PM a Web browser Applications Development6.0.2 CF1zSeries
I got a LotusScript agent to parse a XML document. The XML document is badly generated, so I need to turn off the XML input validation.
After upgrading to Domino R6.02 does the agent no longer working. The error message is:
“An unexpexted error was encountered - Error 4602: DOM parser operation failed at line number 35”
The code at line 35 is:
31: Set domParser = session.CreateDOMParser
32: Call domParser.setinput(xml_in)
33: domparser.InputValidationOption = 0
34: domParser.AddXMLDeclNode = False
35: domParser.Process
36: Set docNode = domParser.Document
I read in the Fix List database for Domino R6.02:
SPR# AYOG5FKPDF - XML parsers now read in correct default information from DTD even when validation is disabled.
Maybe there is a connection between the SPR and the failure, I don’t know. But is there anyone else who got a similar problem ?